home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / osi / isode / vmsisode / vmsisode80_tar.Z / vmsisode80_tar / sockit / gccinclude / sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-04-24  |  260 b   |  19 lines

  1. /*    TIMEB - Ftime() RTL Routine Return Structure Definition     */
  2.  
  3. # ifndef __TIMEB
  4. # define __TIMEB
  5.  
  6. #include <sys/types.h>
  7.  
  8. struct timeb 
  9.     {
  10.     time_t        time;
  11.     unsigned short     millitm;
  12.     short        timezone;
  13.     short        dstflag;
  14.     };
  15.  
  16. typedef struct timeb timeb_t;
  17.  
  18. # endif
  19.